home *** CD-ROM | disk | FTP | other *** search
- //
- // MacroWindowController.h
- // TextBucket
- //
- // Created by Jim on 12/13/04.
- // Copyright 2004 __MyCompanyName__. All rights reserved.
- //
-
- #import <Cocoa/Cocoa.h>
-
- @class TextBucket;
-
- @interface MacroWindowController : NSWindowController {
- TextBucket* bucket;
- NSArray* macros;
- NSMutableString* string;
-
- NSMutableArray* fields;
- }
-
- -(void) setMacros:(NSArray*) macros;
- -(void) setString:(NSString*) string;
-
- - (TextBucket*) bucket;
- - (void) setBucket:(TextBucket*) newBucket;
-
- -(IBAction) closeWindow:(id) sender;
-
- @end
-